home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 48
/
Amiga Format CD48 (1999-12-13)(Future Publishing)(GB)(Track 1 of 2)[!][issue 2000-01].iso
/
-in_the_mag-
/
networking
/
crosspc
/
parpc04
/
packet
/
src
/
chrout.asm
next >
Wrap
Assembly Source File
|
1993-04-01
|
195b
|
13 lines
;put into the public domain by Russell Nelson, nelson@crynwr.com
public chrout
chrout:
push ax ;print the char in al.
push dx
mov dl,al
mov ah,2
int 21h
pop dx
pop ax
ret